html {
    background-color: rgb(41, 41, 41);
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
}

.tittle {
    margin: 5vh 0vh;
    text-align: center;
    background-color: brown;
    color: white;
    font-family: 'Bebas Neue', cursive;
    font-size: 6vw;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

button {
    width: 20vw;
    border: 0;
    margin: 2vw 2vw;
    color: aliceblue;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6vw;
    text-decoration: none;
    padding: 10px 35px 7px 35px;
    border-radius: 12px;
    background: brown;
    box-shadow: 2px 2px 0px 0px rgba(116, 45, 33);
    text-decoration: none;
}

button:hover {
    background: rgb(177, 138, 131);
    box-shadow: 2px 2px 0px 0px rgba(116, 45, 33);
    color: rgb(27, 27, 27);
}

button:active {
    color: aliceblue;
    background: rgb(146, 77, 65);
    box-shadow: 2px 2px 0px 0px rgba(116, 45, 33);
}

footer,h4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(60, 60, 60);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: aliceblue;
    margin: 10px 0 10px 0;
}

footer a {
    text-decoration: none;
    color: aliceblue;
    
}


main {
    margin-top: 5vh;
    margin-bottom: 7vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.movies-cards {
    display: grid;
    justify-items: center;
    grid-template-columns: auto;

}


.movieCard {
    display: inline-flex;
    flex-direction: row;
    margin: 2vh;
}

.movieCard a img {
    
    display: flex;
    flex-direction: column;
    border-radius: 50px 20px 100px;
    width: 250px;
    opacity: 0.2;
    margin: 20px 20px 0 20px;
    
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    text-align: center;
    color: aliceblue;
    font-size: 1vw;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 15px;
}


.info h3 {
    width: auto;
    text-align: justify;
    justify-items: center;

}

a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;

}

@media (max-width: 700px) {


    .movieCard a  {
        align-self: center;
    }
    .movieCard a img {
        width: 30vw;
    }
    .info{
        font-size: 3vw;
        width: 40vw;
    }
    .tittle{
        font-size: 12vw;
    }
    button{
        font-size: 4vw;
        width: auto;
        margin-top: 10px;
    }
    nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
